Salesforce UX API icon

Salesforce UX API

(0 reviews)

TMF-621 Notes Comments Updation in Invgate

/{businessId}/troubleticket/{id}

To update notes/comments of incident in Invgate.

URL
https://nonprod.esb.cloud.lla.com/test/sfdc-ux/sfdc-ux/v1/{businessId}/troubleTicket/{id}
Base Uri Param
nametypedescriptionrequired
businessIdstringBusisness Id. Expected:HN,CO,CR,SV,GT,DO,TT,BB,JM,AG,AI,DM,GD,LC,VC,TC,MS,VGY
idstringIncident NumberY
Headers
nametypedescriptionrequired
client_idstringClient Id value for Client Id Enforcement policy. Environment Specific Value. Eg: 6f0ed16a7b494d76b2d60e05bc3b3332Y
client_secretstringClient secret value for Client Id Enforcement policy. Environment Specific Value, eg: e4CD4D43449846aA9D8Cb9c43fAd324aY
X-Correlation-IDstringThis is a unique identifier. Could be uuid value, Min 16 Characters Example: 644e1dd7-2a7f-18fb-b8ed-ed78c3F92c2bY
Body Definition
nametypedescriptionrequired
@typestringDefault: NetworkTroubleTicketY
note[].idstringworklog idN
note[].textstringworklog descriptionN
note[].@typestringDefault : NoteN
attachment[].idstringWorklog IdN
attachment[].mimeTypestringType of attachmentN
attachment[].namestringName of attachmentN
attachment[].contentstringBase64 content of attachmentN
attachment[].attachmentTypestringDefault WorklogAttachmentsN
attachment[].@referredTypestringDefault AttachmentN
Sample request
{
 "note": [
      {
         "id":"",
         "text":"This is quite important, please approach me as soon as possible",
         "@type":"Note"
      }
   ],
   "attachment": [
          {
            "id":"",
            "mimeType": "image/png",
            "name": "ModemImage.png",
            "content": "<base64 content>",
            "attachmentType": "WorklogAttachments",
            "@referredType": "Attachment"
          }
    ],
   "@type":"NetworkTroubleTicket"
}'
Success Response
{
 "note":[
      {
          "id":"",
         "text":"This is quite important, please approach me as soon as possible",
         "@type":"Note"
      }
   ],
   "attachment": [
          {
             "id":"",
            "mimeType": "image/png",
            "name": "ModemImage.png",
            "content": "<base64 content>",
            "attachmentType": "WorklogAttachments",
            "@referredType": "Attachment"
          }
    ],
   "@type":"NetworkTroubleTicket"
}

Reviews